home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / METHODACCESS.DTML < prev    next >
Encoding:
Text File  |  2000-05-11  |  2.0 KB  |  50 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  2. <html lang="en"><head><title>Security</title></head>
  3. <body bgcolor="#ffffff" link="#000099" vlink="#555555" alink="#77003b">
  4. <dtml-if manage_tabs>
  5. <dtml-var manage_tabs>
  6. </dtml-if manage_tabs>
  7.  
  8. <p>This interface is used to define how the operations of this object
  9. (or objects that acquire permission settings from this object)
  10. correspond to the operations defined by your product or ZClass.</p>
  11.  
  12. <p>The table below has two columns. The first column
  13. lists the permissions for this object.  The second column specifies
  14. the permissions that should have this permission in this product or
  15. ZClass. For ZClass methods, only permissions that are defined for the
  16. ZClass are permitted.</p>
  17.  
  18. <p>In general, any permissions that include operations that change
  19. (mutate) an object should be disabled.</p>
  20.  
  21. <p>The listing below shows the current permission mappings for this item.</p>
  22. <dtml-with "_(valid=permissionMappingPossibleValues())">
  23. <form action="manage_setPermissionMapping" method="POST">
  24. <table>
  25.   <tr><th align=left>Permission for this object</th>
  26.       <th align=left>Permissions that correspond to<br>
  27.          (i.e. have) this permission</th></tr>
  28.   <dtml-in manage_getPermissionMapping mapping>
  29.     <tr>
  30.       <th align=left><dtml-var permission_name></th>
  31.       <td>
  32.          <input type=hidden name="permission_names:list" 
  33.             value="<dtml-var permission_name html_quote>">
  34.          <select name="class_permissions:list">
  35.         <option value="" <dtml-unless class_permission
  36.                 >selected</dtml-unless>>(disabled)</option>
  37.         <dtml-in valid>
  38.             <option <dtml-if "_['sequence-item']==class_permission"
  39.             >selected</dtml-if>><dtml-var sequence-item></option>
  40.             </dtml-in>
  41.          </select>
  42.       </td>
  43.     </tr>
  44.   </dtml-in>
  45.   <tr><td colspan=2 align=center><input type=submit value=" Change "></td></tr>
  46. </table></form>
  47. </dtml-with>
  48.  
  49. </body></html>
  50.